home *** CD-ROM | disk | FTP | other *** search
/ Sky at Night 2006 September / SAN CD 9-2006 CD-ROM 16.iso / pc / Software / Network Telescope Control / NTC-Setup.Exe / Source / ntc_client.dpr < prev    next >
Encoding:
Text File  |  2006-03-24  |  2.4 KB  |  59 lines

  1. program ntc_client;
  2. {
  3.     Copyright (C) 2004 - 2006 Andrew Sprott
  4.  
  5.     http://astronomy.crysania.co.uk
  6.     astro@trefach.co.uk
  7.  
  8.     This program is free software; you can redistribute it and/or
  9.     modify it under the terms of the GNU General Public License
  10.     as published by the Free Software Foundation; either version 2
  11.     of the License, or (at your option) any later version.
  12.  
  13.     This program is distributed in the hope that it will be useful,
  14.     but WITHOUT ANY WARRANTY; without even the implied warranty of
  15.     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16.     GNU General Public License for more details.
  17.  
  18.     You should have received a copy of the GNU General Public License
  19.     along with this program; if not, write to the Free Software
  20.     Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  21. }
  22.  
  23. uses
  24.   forms,
  25.   ntc_client_form in 'ntc_client_form.pas' {scope},
  26.   ntc_client_control in 'ntc_client_control.pas' {scope_control},
  27.   ntc_client_network in 'ntc_client_network.pas' {scope_network},
  28.   ntc_client_info in 'ntc_client_info.pas' {scope_info},
  29.   ntc_client_focus in 'ntc_client_focus.pas' {scope_focus},
  30.   ntc_client_object in 'ntc_client_object.pas',
  31.   ntc_client_button in 'ntc_client_button.pas',
  32.   ntc_client_tracking in 'ntc_client_tracking.pas' {scope_tracking},
  33.   ntc_client_about in 'ntc_client_about.pas' {scope_about},
  34.   ntc_client_search in 'ntc_client_search.pas' {scope_search},
  35.   ntc_client_sun in 'ntc_client_sun.pas' {scope_sun},
  36.   ntc_client_moon in 'ntc_client_moon.pas' {scope_moon},
  37.   ntc_client_planets in 'ntc_client_planets.pas' {scope_planets},
  38.   ntc_client_catalogs in 'ntc_client_catalogs.pas' {scope_catalogs};
  39.  
  40. {$R *.res}
  41.  
  42. begin
  43.   Application.Title := 'NTC Client';
  44.   Application.CreateForm(Tscope, scope);
  45.   Application.CreateForm(Tscope_info, scope_info);
  46.   Application.CreateForm(Tscope_focus, scope_focus);
  47.   Application.CreateForm(Tscope_control, scope_control);
  48.   Application.CreateForm(Tscope_search, scope_search);
  49.   Application.CreateForm(Tscope_network, scope_network);
  50.   Application.CreateForm(Tscope_tracking, scope_tracking);
  51.   Application.CreateForm(Tscope_about, scope_about);
  52.   Application.CreateForm(Tscope_sun, scope_sun);
  53.   Application.CreateForm(Tscope_moon, scope_moon);
  54.   Application.CreateForm(Tscope_planets, scope_planets);
  55.   Application.CreateForm(Tscope_catalogs, scope_catalogs);
  56.   application.Run;
  57. end.
  58.  
  59.